Remove libc from leak suppression list
authorMatthias Clasen <mclasen@redhat.com>
Fri, 22 Jan 2021 05:12:46 +0000 (00:12 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Fri, 22 Jan 2021 05:12:46 +0000 (00:12 -0500)
commita486536925ab7b9615e371ebfcabac64516b4d86
tree5949453d2b90540353cac4ee755c0237bddbe6d0
parent6c54abeca719cb98d6ce84c0c03114b426cb1c51
Remove libc from leak suppression list

Every program starts in __libc_start_main, so this would suppress
everything. This doesn't happen in practice because asan by default
is unable to unwind the stack. Setting
ASAN_OPTIONS=fast_unwind_on_malloc=0,malloc_context_size=15 can unwind
the stack, and if malloc_context_size is large enough it will indeed
suppress everything.
lsan.supp